/*{#BuyRentalPanel#}*/
:root{
  --smm-bg:#0a0a0a;
  --smm-card:#111111;
  --smm-text:#ffffff;
  --smm-muted:#a1a1aa;
  --smm-border:#222222;
  --smm-shadow:0 10px 30px rgba(0,0,0,.45);
  --smm-radius:18px;
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:var(--smm-bg);
  color:var(--smm-text);
} 

html.smm-light-mode,
html.smm-light-mode body{
    background:#dc2626;
}

a{text-decoration:none}

.smm-app-shell{min-height:100vh}

/* PUBLIC NAV */
.smm-public-header{
  position:sticky;
  top:0;
  z-index:999;
  background:#000;
  border-bottom:1px solid #1f1f1f;
}

.smm-public-nav{
  max-width:1180px;
  margin:auto;
  padding:14px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.smm-brand{
  display:flex;
  align-items:center;
  gap:12px;
  color:#fff;
  font-weight:900;
}

.smm-brand img{
  max-height:48px;
  max-width:190px;
  object-fit:contain;
}

.smm-brand-text{
  font-size:22px;
  letter-spacing:.4px;
  text-transform:uppercase;
  color:#fff;
}

.smm-public-menu{
  display:flex;
  align-items:center;
  gap:8px;
  list-style:none;
  margin:0;
  padding:0;
}

.smm-public-menu a{
  color:#d4d4d8;
  font-weight:700;
  padding:10px 14px;
  border-radius:999px;
  display:flex;
  align-items:center;
  gap:8px;
  transition:.25s;
}

.smm-public-menu a:hover,
.smm-public-menu a.smm-active{
  background:#111;
  color:#fff;
}

.smm-public-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.smm-theme-btn,
.smm-mobile-toggle{
  border:1px solid #222;
  background:#111;
  color:#fff;
  width:42px;
  height:42px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.smm-signup-btn{
  background:#fff;
  color:#000;
  padding:11px 18px;
  border-radius:999px;
  font-weight:900;
  display:flex;
  align-items:center;
  gap:8px;
}

.smm-mobile-toggle{display:none}

/* AUTH */
.smm-auth-layout{
  display:flex;
  min-height:100vh;
}

.smm-sidebar{
  width:280px;
  background:#000;
  color:#fff;
  position:fixed;
  left:0;
  top:0;
  bottom:0;
  z-index:1000;
  padding:18px;
  overflow-y:auto;
  border-right:1px solid #1f1f1f;
  box-shadow:var(--smm-shadow);
}

.smm-sidebar-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:20px;
}

.smm-sidebar .smm-brand img{
  max-height:52px;
  max-width:190px;
}

.smm-close-sidebar{
  display:none;
  background:#111;
  border:1px solid #222;
  color:#fff;
  width:38px;
  height:38px;
  border-radius:12px;
}

.smm-user-card{
  background:#111;
  border:1px solid #222;
  border-radius:var(--smm-radius);
  padding:14px;
  margin-bottom:18px;
}

.smm-user-card small{
  color:#a1a1aa;
  font-weight:700;
}

.smm-user-profile{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:15px;
}

.smm-user-avatar{
    width:55px;
    height:55px;
    border-radius:50%;
    overflow:hidden;
    border:2px solid #2a2a2a;
    flex-shrink:0;
}

.smm-user-avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.smm-user-info{
    flex:1;
    min-width:0;
}

.smm-user-info h4{
    margin:0;
    font-size:15px;
    font-weight:700;
    color:#fff;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.smm-user-info span{
    font-size:12px;
    color:#a1a1aa;
}

.smm-user-balance-box{
    padding-top:12px;
    border-top:1px solid #222;
}

.smm-user-balance-box small{
    display:block;
    color:#a1a1aa;
    margin-bottom:5px;
}

.smm-user-balance{
    font-size:20px;
    font-weight:800;
    color:#22c55e;
}

/* Light Mode */

html.smm-light-mode .smm-user-avatar{
    border-color:#ddd;
}

html.smm-light-mode .smm-user-info h4{
    color:#111;
}

html.smm-light-mode .smm-user-info span{
    color:#666;
}

html.smm-light-mode .smm-user-balance-box{
    border-top:1px solid #ddd;
}

html.smm-light-mode .smm-user-balance-box small{
    color:#666;
} 

.smm-user-balance{
  margin-top:6px;
  font-size:20px;
  font-weight:900;
  color:#fff;
}

.smm-side-menu{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:7px;
}

.smm-side-menu a{
  color:#d4d4d8;
  padding:12px 14px;
  border-radius:14px;
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:750;
  border:1px solid transparent;
  transition:.25s;
}

.smm-side-menu a:hover,
.smm-side-menu li.smm-active a{
  background:#18181b;
  color:#fff;
  border:1px solid #27272a;
}

.smm-side-menu i,
.smm-side-menu span[class*="fa"]{
  width:20px;
  text-align:center;
}

.smm-sidebar-bottom{
  margin-top:18px;
  display:grid;
  gap:8px;
}

.smm-side-action{
  color:#fff;
  background:#111;
  border:1px solid #222;
  padding:11px 14px;
  border-radius:14px;
  font-weight:800;
  display:flex;
  align-items:center;
  gap:10px;
}

.smm-side-action:hover{
  background:#18181b;
  color:#fff;
}

.smm-main{
  width:100%;
  margin-left:280px;
  min-height:100vh;
  background:#0a0a0a;
}

.smm-topbar{
  height:76px;
  background:#000;
  border-bottom:1px solid #1f1f1f;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 24px;
  position:sticky;
  top:0;
  z-index:900;
}

.smm-topbar-left,
.smm-topbar-right{
  display:flex;
  align-items:center;
  gap:10px;
}

.smm-open-sidebar{
  display:none;
  border:1px solid #222;
  width:42px;
  height:42px;
  border-radius:14px;
  background:#111;
  color:#fff;
}

.smm-page-title{
    font-size:18px;
    font-weight:900;
    color:#fff;
    overflow:hidden;
    white-space:nowrap;
}

/* Mobile */
@media (max-width:768px){

    .smm-page-title{
        max-width:180px;
        display:block;
        overflow:hidden;
        white-space:nowrap;
        position:relative;
    }

    .smm-page-title span{
        display:inline-block;
        padding-left:100%;
        animation:smmTitleScroll 10s linear infinite;
    }

}

@keyframes smmTitleScroll{
    0%{
        transform:translateX(0);
    }
    100%{
        transform:translateX(-100%);
    }
}

.smm-top-pill{
  background:#111;
  color:#fff;
  border:1px solid #222;
  padding:10px 14px;
  border-radius:999px;
  font-weight:900;
}

.smm-content-wrap{
  padding:24px;
  background:#0a0a0a;
  min-height:calc(100vh - 76px);
}

/* =========================
   PREMIUM CURRENCY DROPDOWN
========================= */

.smm-currency-box{
    position:relative;
    z-index:99999;
}

.smm-currency-btn{
    background:#111;
    color:#fff;
    border:1px solid #222;
    padding:10px 15px;
    border-radius:12px;
    font-weight:700;
    cursor:pointer;
}

.smm-currency-menu{
    display:none;
    position:absolute;
    top:55px;
    right:0;
    min-width:220px;
    max-height:300px;
    overflow-y:auto;
    overflow-x:hidden;
    background:#111;
    border:1px solid #222;
    border-radius:16px;
    padding:8px;
    box-shadow:0 15px 35px rgba(0,0,0,.45);
    scrollbar-width:thin;
    scrollbar-color:#444 #111;
} 
 
 .smm-currency-menu{
    display:none;
    position:absolute;
    top:55px;
    right:0;
    min-width:220px;
    max-height:300px;
    overflow-y:auto;
    overflow-x:hidden;
    background:#111;
    border:1px solid #222;
    border-radius:16px;
    padding:8px;
    box-shadow:0 15px 35px rgba(0,0,0,.45);
    scrollbar-width:thin;
    scrollbar-color:#444 #111;
}

/* Dark Mode Scrollbar */
.smm-currency-menu::-webkit-scrollbar{
    width:6px;
}

.smm-currency-menu::-webkit-scrollbar-track{
    background:#111;
    border-radius:10px;
}

.smm-currency-menu::-webkit-scrollbar-thumb{
    background:#444;
    border-radius:10px;
}

.smm-currency-menu::-webkit-scrollbar-thumb:hover{
    background:#666;
}

/* Light Mode */
html.smm-light-mode body .smm-currency-menu{
    background:#ffffff !important;
    border:1px solid #dddddd !important;
    box-shadow:0 15px 35px rgba(0,0,0,.12) !important;
    scrollbar-color:#bbbbbb #ffffff;
}

html.smm-light-mode body .smm-currency-menu::-webkit-scrollbar-track{
    background:#ffffff;
}

html.smm-light-mode body .smm-currency-menu::-webkit-scrollbar-thumb{
    background:#bbbbbb;
    border-radius:10px;
}

html.smm-light-mode body .smm-currency-menu::-webkit-scrollbar-thumb:hover{
    background:#999999;
}

/* Currency Items Dark */
.smm-currency-menu li{
    list-style:none;
    margin:0;
    padding:0;
}

.smm-currency-menu li a{
    display:block;
    padding:10px 12px;
    color:#ffffff !important;
    border-radius:10px;
    font-weight:700;
    text-decoration:none;
    transition:.2s;
}

.smm-currency-menu li a:hover{
    background:#1f1f1f;
    color:#ffffff !important;
}

/* Currency Items Light */
html.smm-light-mode body .smm-currency-menu li a{
    color:#111111 !important;
}

html.smm-light-mode body .smm-currency-menu li a:hover{
    background:#f3f4f6 !important;
    color:#000000 !important;
}
.smm-currency-box.open .smm-currency-menu{
    display:block;
}

.smm-currency-menu li{
    list-style:none;
    margin:0;
    padding:0;
}

.smm-currency-menu li a{
    display:block;
    padding:12px;
    border-radius:12px;
    color:#fff !important;
    text-decoration:none;
    font-weight:700;
    transition:.2s;
}

.smm-currency-menu li a:hover{
    background:#1a1a1a;
    color:#fff !important;
}

html.smm-light-mode body .smm-currency-btn{
    background:#fff;
    color:#111;
    border:1px solid #ddd;
}

html.smm-light-mode body .smm-currency-menu{
    background:#fff;
    border:1px solid #ddd;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

html.smm-light-mode body .smm-currency-menu li a{
    color:#111 !important;
}

html.smm-light-mode body .smm-currency-menu li a:hover{
    background:#f3f4f6;
    color:#000 !important;
}

/* FORM FIX */
.form-control,
.form-select,
input,
textarea,
select{
  background:#111!important;
  border:1px solid #222!important;
  color:#fff!important;
  border-radius:14px!important;
}

label{color:#e5e7eb!important}

.card,
.panel,
.table-responsive{
  background:#111!important;
  color:#fff!important;
  border:1px solid #222!important;
  border-radius:8px!important;
}

.table{color:#fff!important}
.table th,.table td{border-color:#222!important}


/* REAL LIGHT MODE FIX */
html.smm-light-mode body{
  --smm-bg:#f5f5f5;
  --smm-card:#ffffff;
  --smm-text:#111111;
  --smm-muted:#555555;
  --smm-border:#dddddd;
  background:#f5f5f5!important;
  color:#111!important;
}

html.smm-light-mode body .smm-main,
html.smm-light-mode body .smm-content-wrap{
  background:#f5f5f5!important;
}

html.smm-light-mode body .smm-public-header,
html.smm-light-mode body .smm-topbar{
  background:#fff!important;
  border-color:#ddd!important;
}

html.smm-light-mode body .smm-sidebar{
  background:#fff!important;
  color:#111!important;
  border-right:1px solid #ddd!important;
}

html.smm-light-mode body .smm-brand,
html.smm-light-mode body .smm-brand-text,
html.smm-light-mode body .smm-page-title{
  color:#111!important;
}

html.smm-light-mode body .smm-user-card,
html.smm-light-mode body .smm-side-action,
html.smm-light-mode body .smm-theme-btn,
html.smm-light-mode body .smm-currency-btn,
html.smm-light-mode body .smm-currency-menu{
  background:#fff!important;
  color:#111!important;
  border-color:#ddd!important;
}

html.smm-light-mode body .smm-user-balance,
html.smm-light-mode body .smm-user-card small{
  color:#111!important;
}


html.smm-light-mode .smm-public-menu a{
    color:#374151 !important;
}

html.smm-light-mode .smm-public-menu a:hover,
html.smm-light-mode .smm-public-menu a.smm-active{
    background:#dc2626 !important;
    border-color:#dc2626 !important;
    color:#ffffff !important;
    font-weight:800;
}

html.smm-light-mode .smm-public-menu a:hover i,
html.smm-light-mode .smm-public-menu a.smm-active i,
html.smm-light-mode .smm-public-menu a:hover span,
html.smm-light-mode .smm-public-menu a.smm-active span{
    color:#ffffff !important;
}

/* Sidebar */

html.smm-light-mode .smm-side-menu a{
    color:#374151 !important;
}

html.smm-light-mode .smm-side-menu a:hover,
html.smm-light-mode .smm-side-menu li.smm-active a{
    background:#dc2626 !important;
    border-color:#dc2626 !important;
    color:#ffffff !important;
    font-weight:800;
}

html.smm-light-mode .smm-side-menu a:hover i,
html.smm-light-mode .smm-side-menu li.smm-active a i,
html.smm-light-mode .smm-side-menu a:hover span,
html.smm-light-mode .smm-side-menu li.smm-active a span{
    color:#ffffff !important;
} 

html.smm-light-mode body .smm-signup-btn{
  background:#000!important;
  color:#fff!important;
}

html.smm-light-mode body .smm-top-pill{
  background:#fff!important;
  color:#111!important;
  border-color:#ddd!important;
}

html.smm-light-mode body .form-control,
html.smm-light-mode body .form-select,
html.smm-light-mode body input,
html.smm-light-mode body textarea,
html.smm-light-mode body select{
  background:#fff!important;
  color:#111!important;
  border-color:#ddd!important;
}

html.smm-light-mode body label{
  color:#111!important;
}

html.smm-light-mode body .card,
html.smm-light-mode body .panel,
html.smm-light-mode body .table-responsive{
  background:#fff!important;
  color:#111!important;
  border-color:#ddd!important;
}

html.smm-light-mode body .table{
  color:#111!important;
}

/* MOBILE */
@media(max-width:992px){
  .smm-mobile-toggle{display:flex}

  .smm-public-menu{
    display:none;
    position:absolute;
    top:72px;
    left:14px;
    right:14px;
    background:#111;
    border:1px solid #222;
    border-radius:20px;
    padding:12px;
    flex-direction:column;
    align-items:stretch;
    box-shadow:var(--smm-shadow);
  }

  body.smm-public-open .smm-public-menu{display:flex}

  .smm-public-actions .smm-signup-btn span{display:none}

  .smm-sidebar{
    transform:translateX(-105%);
    transition:.25s ease;
  }

  body.smm-sidebar-open .smm-sidebar{
    transform:translateX(0);
  }

  .smm-close-sidebar,
  .smm-open-sidebar{
    display:flex;
    align-items:center;
    justify-content:center;
  }

  .smm-main{margin-left:0}
  .smm-content-wrap{padding:8px}
  .smm-topbar{padding:0 14px}
  .smm-page-title{font-size:15px}

  html.smm-light-mode body .smm-public-menu{
    background:#fff!important;
    border-color:#ddd!important;
  }
}

@media(max-width:576px){
  .smm-brand-text{font-size:17px}
  .smm-public-nav{padding:12px}
  .smm-top-pill{display:none}
  .smm-sidebar{width:60%}
} 


/* LIGHT MODE */
html.smm-light-mode .component_card .card{
    background:#ffffff;
    border:1px solid #dddddd;
    padding:20px !important;
    border-radius:14px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

/* DARK MODE */
html:not(.smm-light-mode) .component_card .card{
    background:#111111;
    border:1px solid #262626;
    padding:20px !important;
    border-radius:14px;
    box-shadow:0 10px 25px rgba(0,0,0,.35);
}

html.smm-light-mode .card{
    background:#ffffff;
    border-color:#dddddd;
}



/* =================================== 
   STYLE FORM DESIGN - DARK/LIGHT
=================================== */

.control-label{
    display:block;
    margin-bottom:8px;
    font-size:13px;
    font-weight:700;
    color:#e5e7eb;
}

.form-group{
    margin-bottom:18px;
}

.form-control{
    width:100%;
    height:50px;
    background:#181818 !important;
    border:1px solid #2a2a2a !important;
    color:#ffffff !important;
    border-radius:6px !important;
    padding:0 15px !important;
    font-size:14px;
    font-weight:500;
    transition:.25s;
    box-shadow:none !important;
}

.form-control:focus{
    border-color:#444 !important;
    box-shadow:0 0 0 3px rgba(255,255,255,.05) !important;
    background:#1a1a1a !important;
}

.form-control::placeholder{
    color:#71717a;
}

textarea.form-control{
    min-height:120px;
    padding-top:12px !important;
}

select.form-control{
    cursor:pointer;
}

/* BUTTON */

.btn-big-primary,
.btn-primary{
    width:100%;
    border:1px solid #2a2a2a !important;
    border-radius:6px !important;
    background:#fff !important;
    color:#111 !important;
    font-size:15px;
    font-weight:800 !important;
    transition:.25s;
    box-shadow:none !important;
}

.btn-big-primary:hover,
.btn-primary:hover{
    background:#1a1a1a !important;
    border-color:#333 !important;
    color:#fff !important;
}

.btn-big-primary:active,
.btn-primary:active{
    transform:scale(.98);
}

/* CHECKBOX */

.checkbox{
    margin:18px 0;
}

.checkbox label{
    color:#a1a1aa;
    font-size:13px;
    display:flex;
    align-items:center;
    gap:8px;
}

.checkbox input[type="checkbox"]{
    width:16px;
    height:16px;
}

/* LIGHT MODE */

html.smm-light-mode .control-label{
    color:#111111;
}

html.smm-light-mode .form-control{
    background:#ffffff !important;
    border:1px solid #dddddd !important;
    color:#111111 !important;
}

html.smm-light-mode .form-control:focus{
    background:#ffffff !important;
    border-color:#999999 !important;
    box-shadow:0 0 0 3px rgba(0,0,0,.06) !important;
}

html.smm-light-mode .form-control::placeholder{
    color:#777777;
}

html.smm-light-mode .checkbox label{
    color:#555555;
}

html.smm-light-mode .btn-big-primary,
html.smm-light-mode .btn-primary{
    background:#111111 !important;
    color:#ffffff !important;
    border:1px solid #111111 !important;
}

html.smm-light-mode .btn-big-primary:hover,
html.smm-light-mode .btn-primary:hover{
    background:#222222 !important;
    border-color:#222222 !important;
    color:#ffffff !important;
}

 
/* TERMS PAGE LIKE */

#block_93 .new_order-block{
    padding:35px 0;
}

#block_93 .new_order-block .bg,
#block_93 .divider-top,
#block_93 .divider-bottom{
    display:none;
}

#block_93 .container{
    max-width:950px;
}

#block_93 .card{
    background:#111;
    border:1px solid #222;
    border-radius:22px;
    padding:18px;
    color:#fff;
}

#block_93 .card h1,
#block_93 .card h2,
#block_93 .card h3{
    color:#fff;
    font-weight:900;
    margin-bottom:18px;
}

#block_93 .card p,
#block_93 .card li{
    color:#d4d4d8;
    font-size:15px;
    line-height:1.8;
}

#block_93 .card strong,
#block_93 .card b{
    color:#fff;
}

#block_93 .card a{
    color:#22c55e;
    font-weight:800;
}

/* Light Mode */

html.smm-light-mode #block_93 .card{
    background:#fff;
    border-color:#ddd;
    color:#111;
}

html.smm-light-mode #block_93 .card h1,
html.smm-light-mode #block_93 .card h2,
html.smm-light-mode #block_93 .card h3{
    color:#111;
}

html.smm-light-mode #block_93 .card p,
html.smm-light-mode #block_93 .card li{
    color:#444;
}

html.smm-light-mode #block_93 .card strong,
html.smm-light-mode #block_93 .card b{
    color:#111;
}

/* Mobile */

@media(max-width:768px){

    #block_93 .new_order-block{
        padding:18px 0;
    }

    #block_93 .card{
        padding:18px;
        border-radius:18px;
    }

} 

/* ===================================
   API PAGE DESIGN + ONLY OVERFLOW SCROLL
=================================== */

#block_94 .block-api{
    padding:30px 0;
}

#block_94 .bg,
#block_94 .divider-top,
#block_94 .divider-bottom{
    display:none;
}

#block_94 .container-fluid{
    max-width:1200px;
    margin:0 auto;
}

#block_94 .card{
    background:#111;
    border:1px solid #222;
    border-radius:22px;
    padding:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.25);
    overflow:visible;
}

#block_94 .center-big-content-block{
    overflow:visible;
}

/* only table area scroll */
#block_94 .table-bg{
    width:100%;
    max-width:100%;
    overflow-x:auto;
    overflow-y:hidden;
    -webkit-overflow-scrolling:touch;
}

#block_94 .table{
    margin-bottom:0;
    color:#fff;
    min-width:650px;
}

#block_94 .table th{
    background:#181818;
    color:#fff;
    border-color:#2a2a2a;
    font-weight:800;
    padding:14px;
}

#block_94 .table td{
    border-color:#2a2a2a;
    padding:14px;
    color:#d4d4d8;
}

/* only code area scroll */
#block_94 pre{
    max-width:100%;
    background:#181818;
    border:1px solid #2a2a2a;
    border-radius:16px;
    padding:18px;
    overflow:auto;
    color:#22c55e;
    font-size:13px;
    line-height:1.7;
    margin:15px 0 25px;
    white-space:pre;
}

/* scrollbar only for overflow areas */
#block_94 .table-bg::-webkit-scrollbar,
#block_94 pre::-webkit-scrollbar{
    height:6px;
}

#block_94 .table-bg::-webkit-scrollbar-thumb,
#block_94 pre::-webkit-scrollbar-thumb{
    background:#444;
    border-radius:10px;
}

/* Light Mode */
html.smm-light-mode #block_94 .card{
    background:#fff;
    border-color:#ddd;
}

html.smm-light-mode #block_94 .table th{
    background:#f8f8f8;
    color:#111;
    border-color:#ddd;
}

html.smm-light-mode #block_94 .table td{
    color:#444;
    border-color:#ddd;
}

html.smm-light-mode #block_94 pre{
    background:#f8f8f8;
    border-color:#ddd;
}

/* =====================================
   REMOVE UNDERLINE FROM ALL LINKS
===================================== */

a,
a:hover,
a:focus,
a:active,
a:visited,
.nav a,
.navbar a,
.dropdown-menu a,
.dropdown-item,
.smm-public-menu a,
.smm-side-menu a,
.smm-side-action,
.smm-signup-btn,
.smm-top-pill,
.smm-brand,
.smm-brand-text,
.btn,
.btn-primary,
.btn-big-primary,
.card a,
.panel a,
.table a,
.pagination a,
.footer a,
.select2-results__option,
.select2-selection__rendered{
    text-decoration:none !important;
}

/* Remove underline from all children */
a *,
a:hover *,
a:focus *{
    text-decoration:none !important;
}

/* Prevent browser underline */
*:link,
*:visited{
    text-decoration:none;
}



:root{
  --smm-red:#dc2626;
  --smm-red-dark:#b91c1c;
  --smm-green:#16a34a;
  --smm-green-dark:#15803d;
  --smm-black:#050505;
  --smm-white:#ffffff;
  --smm-light-bg:#f8fafc;
  --smm-light-card:#ffffff;
  --smm-light-border:#e5e7eb;
  --smm-dark-bg:#050505;
  --smm-dark-card:#101010;
  --smm-dark-border:#262626;
}

/* DARK BASE */
html:not(.smm-light-mode) body{
  background:var(--smm-dark-bg)!important;
  color:var(--smm-white)!important;
}

html:not(.smm-light-mode) .smm-public-header,
html:not(.smm-light-mode) .smm-topbar,
html:not(.smm-light-mode) .smm-sidebar{
  background:var(--smm-black)!important;
  border-color:var(--smm-dark-border)!important;
}

html:not(.smm-light-mode) .smm-main,
html:not(.smm-light-mode) .smm-content-wrap{
  background:var(--smm-dark-bg)!important;
}

html:not(.smm-light-mode) .smm-user-card,
html:not(.smm-light-mode) .card,
html:not(.smm-light-mode) .panel,
html:not(.smm-light-mode) .table-responsive,
html:not(.smm-light-mode) .dropdown-menu,
html:not(.smm-light-mode) .smm-currency-menu{
  background:var(--smm-dark-card)!important;
  border-color:var(--smm-dark-border)!important;
  color:var(--smm-white)!important;
}

/* LIGHT DEFAULT */
html.smm-light-mode body{
  background:var(--smm-light-bg)!important;
  color:#111827!important;
}

html.smm-light-mode .smm-public-header,
html.smm-light-mode .smm-topbar,
html.smm-light-mode .smm-sidebar{
  background:var(--smm-white)!important;
  border-color:var(--smm-light-border)!important;
  color:#111827!important;
}

html.smm-light-mode .smm-main,
html.smm-light-mode .smm-content-wrap{
  background:var(--smm-light-bg)!important;
}

html.smm-light-mode .smm-user-card,
html.smm-light-mode .card,
html.smm-light-mode .panel,
html.smm-light-mode .table-responsive,
html.smm-light-mode .dropdown-menu,
html.smm-light-mode .smm-currency-menu{
  background:var(--smm-white)!important;
  border-color:var(--smm-light-border)!important;
  color:#111827!important;
}

/* BRAND + ACTIVE COLORS */
.smm-brand-text,
.smm-page-title{
  color:var(--smm-red)!important;
}

.smm-side-menu a:hover,
.smm-side-menu li.smm-active a,
.smm-public-menu a:hover,
.smm-public-menu a.smm-active{
  background:var(--smm-red)!important;
  border-color:var(--smm-red)!important;
  color:var(--smm-white)!important;
}

.smm-side-menu a:hover i,
.smm-side-menu li.smm-active a i,
.smm-side-menu a:hover span,
.smm-side-menu li.smm-active a span,
.smm-public-menu a:hover span,
.smm-public-menu a.smm-active span{
  color:var(--smm-white)!important;
}

/* BUTTONS */
.smm-signup-btn,
.btn-big-primary,
.btn-primary{
  background:var(--smm-red)!important;
  border-color:var(--smm-red)!important;
  color:var(--smm-white)!important;
}

.smm-signup-btn:hover,
.btn-big-primary:hover,
.btn-primary:hover{
  background:var(--smm-green)!important;
  border-color:var(--smm-green)!important;
  color:var(--smm-white)!important;
}

.smm-theme-btn,
.smm-mobile-toggle,
.smm-open-sidebar,
.smm-close-sidebar,
.smm-side-action,
.smm-top-pill,
.smm-currency-btn{
  background:var(--smm-white)!important;
  color:var(--smm-black)!important;
  border:1px solid var(--smm-light-border)!important;
}

html:not(.smm-light-mode) .smm-theme-btn,
html:not(.smm-light-mode) .smm-mobile-toggle,
html:not(.smm-light-mode) .smm-open-sidebar,
html:not(.smm-light-mode) .smm-close-sidebar,
html:not(.smm-light-mode) .smm-side-action,
html:not(.smm-light-mode) .smm-top-pill,
html:not(.smm-light-mode) .smm-currency-btn{
  background:var(--smm-dark-card)!important;
  color:var(--smm-white)!important;
  border-color:var(--smm-dark-border)!important;
}

/* FORMS */
.form-control,
.form-select,
input,
textarea,
select{
  border-color:var(--smm-light-border)!important;
}

.form-control:focus,
.form-select:focus,
input:focus,
textarea:focus,
select:focus{
  border-color:var(--smm-red)!important;
  box-shadow:0 0 0 3px rgba(220,38,38,.13)!important;
}

/* TABLE */
.table thead th{
  background:var(--smm-red)!important;
  color:var(--smm-white)!important;
  border-color:var(--smm-red-dark)!important;
}

.table tbody tr:hover{
  background:rgba(22,163,74,.08)!important;
}

/* MOBILE MENU */
@media(max-width:992px){
  html.smm-light-mode .smm-public-menu{
    background:var(--smm-white)!important;
    border-color:var(--smm-light-border)!important;
  }

  html:not(.smm-light-mode) .smm-public-menu{
    background:var(--smm-dark-card)!important;
    border-color:var(--smm-dark-border)!important;
  }
}
/* =========================
   PREMIUM TABLE DESIGN
========================= */

.table-responsive{
    overflow-x:auto;
    border-radius:18px;
    scrollbar-width:thin;
}

.table-responsive::-webkit-scrollbar{
    height:6px;
}

.table-responsive::-webkit-scrollbar-thumb{
    background:#444;
    border-radius:10px;
}

.table{
    width:100%;
    margin:0;
    border-collapse:separate;
    border-spacing:0;
    min-width:650px;
}

.table thead th{
    background:#181818;
    color:#fff;
    font-size:13px;
    font-weight:800;
    padding:14px;
    border-bottom:1px solid #2a2a2a;
    white-space:nowrap;
}

.table tbody td{
    padding:14px;
    color:#d4d4d8;
    border-bottom:1px solid #222;
    vertical-align:middle;
}

.table tbody tr{
    transition:.2s;
}

.table tbody tr:hover{
    background:#181818;
}

.table tbody tr:last-child td{
    border-bottom:none;
}

.table a{
    color:#22c55e;
    font-weight:700;
}

.table .badge{
    padding:6px 10px;
    border-radius:8px;
    font-size:11px;
    font-weight:700;
}

/* Light Mode */
/* DARK MODE TABLE */

html:not(.smm-light-mode) .table{
    background:#101010 !important;
}

html:not(.smm-light-mode) .table thead th{
    background:#dc2626 !important;
    color:#ffffff !important;
    border-color:#b91c1c !important;
}

html:not(.smm-light-mode) .table tbody td{
    background:#101010 !important;
    color:#ffffff !important;
    border-bottom:1px solid #262626 !important;
}

html:not(.smm-light-mode) .table tbody tr{
    background:#101010 !important;
}

html:not(.smm-light-mode) .table tbody tr:hover{
    background:#181818 !important;
}

html:not(.smm-light-mode) .table a{
    color:#ffffff !important;
    font-weight:700;
}

html:not(.smm-light-mode) .table .badge{
    background:#dc2626 !important;
    color:#ffffff !important;
}

html:not(.smm-light-mode) .table-responsive{
    background:#101010 !important;
    border:1px solid #262626 !important;
}
/* Mobile */

@media(max-width:768px){

    .table{
        min-width:800px;
    }

    .table thead th,
    .table tbody td{
        padding:12px;
        font-size:13px;
    }

} 

/* =========================
   ORDER STATUS TABS
   LIGHT + DARK MODE
========================= */

/* Default Tab */
.nav-pills.tab .nav-link{
    background:#ffffff !important;
    color:#111111 !important;
    border:1px solid #e5e7eb !important;
    border-radius:10px !important;
    font-weight:700;
    margin:3px;
    transition:.25s;
}

/* Hover */
.nav-pills.tab .nav-link:hover{
    background:#dc2626 !important;
    border-color:#dc2626 !important;
    color:#ffffff !important;
}

/* Active */
.nav-pills.tab .nav-link.active,
.nav-pills.tab .show>.nav-link{
    background:#dc2626 !important;
    border-color:#dc2626 !important;
    color:#ffffff !important;
}

/* =========================
   DARK MODE
========================= */

html:not(.smm-light-mode) .nav-pills.tab .nav-link{
    background:#111111 !important;
    color:#ffffff !important;
    border-color:#262626 !important;
}

html:not(.smm-light-mode) .nav-pills.tab .nav-link:hover{
    background:#dc2626 !important;
    border-color:#dc2626 !important;
    color:#ffffff !important;
}

html:not(.smm-light-mode) .nav-pills.tab .nav-link.active,
html:not(.smm-light-mode) .nav-pills.tab .show>.nav-link{
    background:#dc2626 !important;
    border-color:#dc2626 !important;
    color:#ffffff !important;
} 

/* =========================
   BTN ACTIONS
   LIGHT + DARK MODE
========================= */

/* Light Mode */
html.smm-light-mode .btn-actions{
    background:#ffffff !important;
    color:#111111 !important;
    border:1px solid #e5e7eb !important;
}

html.smm-light-mode .btn-actions:hover{
    background:#dc2626 !important;
    color:#ffffff !important;
    border-color:#dc2626 !important;
}

/* Dark Mode */
html:not(.smm-light-mode) .btn-actions{
    background:#111111 !important;
    color:#ffffff !important;
    border:1px solid #262626 !important;
}

html:not(.smm-light-mode) .btn-actions:hover{
    background:#dc2626 !important;
    color:#ffffff !important;
    border-color:#dc2626 !important;
} 

/* =========================
   BTN BIG SECONDARY
   LIGHT + DARK MODE
========================= */

/* Light Mode */
html.smm-light-mode .btn-big-secondary{
    background:#ffffff !important;
    color:#111111 !important;
    border:1px solid #e5e7eb !important;
}

html.smm-light-mode .btn-big-secondary:hover,
html.smm-light-mode .btn-big-secondary:focus{
    background:#dc2626 !important;
    color:#ffffff !important;
    border-color:#dc2626 !important;
}

/* Dark Mode */
html:not(.smm-light-mode) .btn-big-secondary{
    background:#111111 !important;
    color:#ffffff !important;
    border:1px solid #262626 !important;
}

html:not(.smm-light-mode) .btn-big-secondary:hover,
html:not(.smm-light-mode) .btn-big-secondary:focus{
    background:#dc2626 !important;
    color:#ffffff !important;
    border-color:#dc2626 !important;
} 

/* Light Mode */
html.smm-light-mode .service-price-badge{
    background:#111111 !important;
    color:#ffffff !important;
}

html.smm-light-mode .service-minmax-badge{
    background:#dc2626 !important;
    color:#ffffff !important;
}

/* Dark Mode */
html:not(.smm-light-mode) .service-price-badge{
    background:#ffffff !important;
    color:#111111 !important;
}

html:not(.smm-light-mode) .service-minmax-badge{
    background:#dc2626 !important;
    color:#ffffff !important;
} 

/* =========================
   SERVICE FILTER DROPDOWNS
   LIGHT + DARK MODE
========================= */

/* Light Mode Button */
html.smm-light-mode .component_filter_button .btn-big-primary,
html.smm-light-mode .component_filter_currency_button .btn-big-primary{
    background:#111111 !important;
    color:#ffffff !important;
    border:1px solid #111111 !important;
}

/* Dark Mode Button */
html:not(.smm-light-mode) .component_filter_button .btn-big-primary,
html:not(.smm-light-mode) .component_filter_currency_button .btn-big-primary{
    background:#ffffff !important;
    color:#111111 !important;
    border:1px solid #ffffff !important;
}

/* Hover */
.component_filter_button .btn-big-primary:hover,
.component_filter_currency_button .btn-big-primary:hover{
    background:#dc2626 !important;
    color:#ffffff !important;
    border-color:#dc2626 !important;
}

/* Dropdown Menu Light */
html.smm-light-mode .component_filter_button .dropdown-menu,
html.smm-light-mode .component_filter_currency_button .dropdown-menu{
    background:#ffffff !important;
    border:1px solid #e5e7eb !important;
    box-shadow:0 10px 25px rgba(0,0,0,.10) !important;
}

/* Dropdown Menu Dark */
html:not(.smm-light-mode) .component_filter_button .dropdown-menu,
html:not(.smm-light-mode) .component_filter_currency_button .dropdown-menu{
    background:#111111 !important;
    border:1px solid #262626 !important;
    box-shadow:0 10px 25px rgba(0,0,0,.35) !important;
}

/* Dropdown Items Light */
html.smm-light-mode .component_filter_button .dropdown-item,
html.smm-light-mode .component_filter_currency_button .dropdown-item{
    color:#111111 !important;
    background:#ffffff !important;
}

/* Dropdown Items Dark */
html:not(.smm-light-mode) .component_filter_button .dropdown-item,
html:not(.smm-light-mode) .component_filter_currency_button .dropdown-item{
    color:#ffffff !important;
    background:#111111 !important;
}

/* Item Hover / Active */
.component_filter_button .dropdown-item:hover,
.component_filter_button .dropdown-item.active,
.component_filter_currency_button .dropdown-item:hover,
.component_filter_currency_button .dropdown-item.active{
    background:#dc2626 !important;
    color:#ffffff !important;
}

/* Scrollbar */
.component_filter_button .dropdown-menu::-webkit-scrollbar,
.component_filter_currency_button .dropdown-menu::-webkit-scrollbar{
    width:6px;
}

.component_filter_button .dropdown-menu::-webkit-scrollbar-thumb,
.component_filter_currency_button .dropdown-menu::-webkit-scrollbar-thumb{
    background:#dc2626;
    border-radius:10px;
}

/* LIGHT MODE */
html.smm-light-mode .style-bg-primary{
    background:#dc2626 !important;
    color:#ffffff !important;
    border-color:#dc2626 !important;
}

/* DARK MODE */
html:not(.smm-light-mode) .style-bg-primary{
    background:#ffffff !important;
    color:#111111 !important;
    border-color:#ffffff !important;
} 

/* =========================
   CHILD PANEL NOTE
========================= */

.ChildPanelNote{
    padding:14px;
    border-radius:12px;
    margin-bottom:15px;
}

/* Light Mode */
html.smm-light-mode .ChildPanelNote{
    background:#ffffff;
    border:1px solid #e5e7eb;
}

html.smm-light-mode .ChildPanelNote .help-block{
    color:#111111 !important;
    font-weight:700;
}

html.smm-light-mode .ChildPanelNote p{
    background:#f8fafc;
    border:1px solid #e5e7eb;
    color:#111111;
    padding:10px 12px;
    border-radius:10px;
    margin-top:10px;
    margin-bottom:0;
}

/* Dark Mode */
html:not(.smm-light-mode) .ChildPanelNote{
    background:#111111;
    border:1px solid #262626;
}

html:not(.smm-light-mode) .ChildPanelNote .help-block{
    color:#ffffff !important;
    font-weight:700;
}

html:not(.smm-light-mode) .ChildPanelNote p{
    background:#181818;
    border:1px solid #262626;
    color:#ffffff;
    padding:10px 12px;
    border-radius:10px;
    margin-top:10px;
    margin-bottom:0;
}

/* Copy Button */
.ChildPanelNote .copy{
    cursor:pointer;
    margin-left:8px;
    transition:.2s;
}

html.smm-light-mode .ChildPanelNote .copy{
    color:#dc2626;
}

html:not(.smm-light-mode) .ChildPanelNote .copy{
    color:#dc2626;
}

.ChildPanelNote .copy:hover{
    opacity:.8;
} 

/* =========================
   TICKET CHAT USER INFO
========================= */

/* Support Name */
.ticket-dialog__row-bottom-name{
    font-size:13px;
    font-weight:700;
}

/* Message Date */
.ticket-dialog__row-bottom-date{
    font-size:11px;
    opacity:.8;
}

/* LIGHT MODE */
html.smm-light-mode .ticket-dialog__row-bottom-name{
    color:#111111;
}

html.smm-light-mode .ticket-dialog__row-bottom-date{
    color:#6b7280;
}

/* DARK MODE */
html:not(.smm-light-mode) .ticket-dialog__row-bottom-name{
    color:#ffffff;
}

html:not(.smm-light-mode) .ticket-dialog__row-bottom-date{
    color:#d1d5db;
} 

/* =========================
   INSTRUCTIONS BOX
========================= */

html.smm-light-mode .panel-body.border-solid.border-rounded{
    background:#ffffff;
    color:#111111;
    border:1px solid #e5e7eb;
    border-left:4px solid #dc2626;
    border-radius:12px;
    padding:14px;
    line-height:1.7;
}

html:not(.smm-light-mode) .panel-body.border-solid.border-rounded{
    background:#111111;
    color:#ffffff;
    border:1px solid #262626;
    border-left:4px solid #dc2626;
    border-radius:12px;
    padding:14px;
    line-height:1.7;
}

.panel-body.border-solid.border-rounded a{
    color:#dc2626;
    font-weight:700;
    text-decoration:none;
}

.panel-body.border-solid.border-rounded a:hover{
    text-decoration:underline;
} 

/* =========================
   FOOTER LIGHT + DARK MODE
========================= */

/* Footer */
.footer{
    margin-top:20px;
}

/* Light Mode */
html.smm-light-mode .component-footer__public{
    background:#ffffff;
    border-top:1px solid #e5e7eb;
}

html.smm-light-mode .component-footer__public-copyright{
    padding:15px 10px;
    color:#111111;
}

html.smm-light-mode .component-footer__public-copyright p{
    color:#111111;
    margin:0;
    font-size:13px;
    font-weight:600;
}

/* Dark Mode */
html:not(.smm-light-mode) .component-footer__public{
    background:#111111;
    border-top:1px solid #262626;
}

html:not(.smm-light-mode) .component-footer__public-copyright{
    padding:15px 10px;
    color:#ffffff;
}

html:not(.smm-light-mode) .component-footer__public-copyright p{
    color:#ffffff;
    margin:0;
    font-size:13px;
    font-weight:600;
}

/* Copyright Year Highlight */
.component-footer__public-copyright strong,
.component-footer__public-copyright b{
    color:#dc2626;
} 
.menu-badge{
    background:#dc2626;
    color:#ffffff;
    border-radius:999px;
    padding:2px 6px;
    font-size:10px;
    font-weight:700;
    margin-left:6px;
} 

/*.card,*/
/*.btn,*/
/*.form-control,*/
/*.smm-side-menu a,*/
/*.smm-public-menu a{*/
/*    transition:all .25s ease;*/
/*} */
/*.card:hover{*/
/*    transform:translateY(-2px);*/
/*    box-shadow:0 15px 35px rgba(0,0,0,.12);*/
/*} */
.spinner{
 border-top:3px solid #dc2626;
} 

.elite-empty-state{
    text-align:center;
    padding:50px 20px;
}

.elite-empty-state i{
    font-size:55px;
    color:#dc2626;
    margin-bottom:15px;
}

.elite-empty-state h4{
    margin:0 0 8px;
    font-size:20px;
    font-weight:700;
}

.elite-empty-state p{
    margin:0;
    opacity:.8;
}

/* Light */
html.smm-light-mode .elite-empty-state h4{
    color:#111111;
}

html.smm-light-mode .elite-empty-state p{
    color:#6b7280;
}

/* Dark */
html:not(.smm-light-mode) .elite-empty-state h4{
    color:#ffffff;
}

html:not(.smm-light-mode) .elite-empty-state p{
    color:#d1d5db;
}